home *** CD-ROM | disk | FTP | other *** search
/ Backpacker 2 (Sweden) / BackPacker 2 (Sweden) (Disc 1).7z / BackPacker 2 (Sweden) (Disc 1).bin / pc / instdata / inst0024 / 00009_Export.ls < prev    next >
Encoding:
Text File  |  1997-01-01  |  394 b   |  19 lines

  1. on mouseDown
  2.   set K to the clickOn
  3.   puppetSound("Klick")
  4.   set the castNum of sprite K to the castNum of sprite K + 1
  5.   updateStage()
  6.   repeat while the stillDown or soundBusy(1)
  7.   end repeat
  8.   set the castNum of sprite K to the castNum of sprite K - 1
  9.   updateStage()
  10.   puppetSound(0)
  11. end
  12.  
  13. on mouseUp
  14.   global gOpenIndex
  15.   if gOpenIndex > 0 then
  16.     ExportSavedGame(gOpenIndex)
  17.   end if
  18. end
  19.